home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / doors_1 / mach10.zip / MACHNEW.DOC < prev    next >
Text File  |  1990-08-10  |  3KB  |  62 lines

  1. Version 2.4:
  2.  
  3.    - FLAGS
  4.  
  5.          There are a set of eight flags that may be used in addition to access
  6.          levels in certain instances. These flags are lettered "A"-"Z"
  7.          specifying them with an access level (i.e. 50A) would require the
  8.          user to have both the flag and the access level (i.e. both access
  9.          50 and flag A set). Flags may only be edited with the external user
  10.          editor. Example:
  11.  
  12.          ;Menu  Letter   Access V  P  U   Serv   Desc
  13.          ;----  ------   ------ -  -  -   ----   --------------------
  14.             1    D        50AC  V  Y  N   12     Doors
  15.  
  16.          (Taken from the main menu table)
  17.  
  18.          The user would have to have access level 50 and both flags A and
  19.          C set to use the door command. NOTE: There are no spaces between
  20.          the access level and the flags.
  21.  
  22.          Flags may be used in the following tables:
  23.  
  24.          MAINMENUTABLE
  25.          DOORTABLE
  26.          AREATABLE
  27.          FILEAREATABLE
  28.          CONFERENCETABLE
  29.  
  30.  
  31.    - MULTIPLE LOCKED CONFERENCE MESSAGE AREAS
  32.  
  33.          Conferences may now have more than one message area linked into
  34.          them. This is done with an additional Mach-10 parameter,
  35.          "LINKMSGAREA". The LINKMSGAREA command takes two parameters: the
  36.          conference number and the message area number in that order.
  37.          Example: (From the Mach-10 control file)
  38.  
  39.          CONFERENCETABLE
  40.          ;Num  Name         Mlink Flink Acc  Welcome                 #W  Bulletin                #B
  41.          ;---  ------------ ----- ----- ---- ----------------------- --  ----------------------- --
  42.            1   Main           0     0    10  \mach10\welcome\welcome  9  \mach10\bullet\bullet   20
  43.            .
  44.            .
  45.            4   Coco           2    104   10  \mach10\conf\cocowel     0  \mach10\conf\cocobul     0
  46.  
  47.          ENDCONFERENCETABLE
  48.  
  49.          LINKMSGAREA 4 5
  50.          LINKMSGAREA 4 10
  51.  
  52.          The linkmsgarea parameters would addiotionally link message areas
  53.          number 5 and number 10 into conference number 4. Notice that the
  54.          LINKMSGAREA parameters came AFTER then ENDCONFERENCETABLE. If the
  55.          parameters are inside the table, they will likely mess things up.
  56.          Also notice that area #2 was already linked into conference 4 - so
  57.          conference 4 would have all three areas (4,5, and 10)
  58.  
  59.          NOTE: The LINKMSGAREA parameters must go after the conference table
  60.                and may not be inside
  61.  
  62.